home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’97 / Warrior’s Progress / source code / Source / Libraries / Views / Standard Views / ViewCell.h < prev   
Encoding:
Text File  |  1997-06-28  |  160 b   |  15 lines  |  [TEXT/CWIE]

  1. // ViewCell.h
  2.  
  3. #ifndef ViewCell_h
  4. #define ViewCell_h
  5.  
  6. class ViewMap;
  7.  
  8. class ViewCell
  9.   {
  10.     public:
  11.         virtual void Draw( const ViewMap& ) const = 0;
  12.   };
  13.  
  14. #endif
  15.